sort
目的 Purpose
Customizes the default property to sort by for query results.
使用例 Examples
class Book { … static mapping = { sort "releaseDate" } }
詳細 Description
Usage:
使用方法: sort(string/map)
Usage:
sort(string/map)
By default results are sorted by creation date, and you can specify the column to order by in a query:
def results = Book.list(sort:"title")
However, you can also configure the default sort property:
static mapping = { sort "title" }
in which case the sort
argument is no longer needed. You can also control the sort order:
static mapping = { sort title: "desc" // or "asc" }